home *** CD-ROM | disk | FTP | other *** search
/ Software Club 1 / Club Software (Micro Star) (1996).iso / fview.doc < prev    next >
Text File  |  1993-09-28  |  6KB  |  151 lines

  1.                               FView Version 2.2
  2.                              -------------------
  3.                             Copyright  1991, 1993
  4.  
  5. COPYRIGHT NOTICE
  6.  
  7. This program is public domain and may be freely distributed, providing it is
  8. distributed in the original archive form (or variation thereof, such as a
  9. different archival program) and no charge is made for its redistribution,
  10. except where charges are made for copying services and/or diskettes. The author
  11. holds exclusive rights to the program. No warranty is made, neither expressed
  12. or implied, as to the suitability of the program for a particular purpose. The
  13. author shall not be liable for damages caused by the use, misuse, or abuse of
  14. this program. The program may not be reverse engineered, nor modified.
  15.  
  16.  
  17.  
  18. DESCRIPTION
  19. -----------
  20.  
  21. FView is a simple, text file viewer program. Since I didn't have one, nor was
  22. able to quite find the one I liked, I built my own. (Like they say, if you
  23. want something done right you gotta do it yourself.)
  24.  
  25.  
  26. USAGE
  27. -----
  28.  
  29. Starting the program is simple. From any DOS prompt, type:
  30.  
  31.  
  32.         FVIEW {-ns} filename
  33.  
  34.  
  35. This will scan through the specified file, then display it on screen. Much
  36. like DOS's edlin, the filename MUST be specified.
  37.  
  38. The "-ns" is an option. If specified, no scroll bars will be displayed and
  39. the mouse will not be enabled. Use this if the text file to be viewed
  40. contains lines of 80 characters and you wish to be able to view the entire
  41. line without having to scroll left and right.
  42.  
  43.  
  44. NAVIGATING THROUGH THE FILE
  45. ---------------------------
  46.  
  47. New in version 2.2 is the addition of horizontal and vertical scroll bars,
  48. which show your relative position within the file. If you have a mouse, you
  49. can use the scroll bars to navigate through the file.
  50.  
  51.  
  52. While viewing the document, you can scroll up/down/left/right/etc... using
  53. the cursor keys, page up/down keys, home and end keys (HOME takes you to the
  54. beginning of the file, END takes you to the bottom). As you move around, the
  55. current line and column will be display in the status bar.
  56.  
  57. Note that although the left and right cursor keys scroll a full screen rather
  58. than one character at a time (as the scrolling would be noticably slow), you
  59. can use the box in the horizontal scroll bar to move more precisely. Simply 
  60. click on the box and drag it left or right. Release it where you want it. This 
  61. goes for the vertical scroll bar as well, so you can select where in the file 
  62. you want to view.
  63.  
  64.  
  65. Line    32 of   591 (  1- 79)                                       C:\TEXT.DAT
  66.      -----    -----  -------                  filename displayed here ^^^^^^^^^
  67.        |         |      |
  68.        |         |      +---------------- range of columns on screen
  69.        |         |
  70.        |         +----------------------- total number of lines in file
  71.        |
  72.        +--------------------------------- current line# of first line at the
  73.                                           top of the screen.
  74.  
  75.  
  76. To search through a file, hit 'F', or click on 'F' or 'FIND' in the help line. 
  77. This will bring up a box to type the text in that you wish to search for. When 
  78. you hit ENTER, it will begin searching through the file, starting with the 
  79. current line as indicated in the status bar at the top. To quit from the input 
  80. box, hit ESC. Note that you cannot abort a search in progress.
  81.  
  82. While in the input box, standard editing keys are in effect, ie. left/right
  83. cursor keys, home/end, insert, etc. Use CTRL-HOME to erase the input and start
  84. over at the first position (CTRL-X also erases). When you first enter the box,
  85. the last text string (if any) you entered will be displayed. You can edit this 
  86. string or start with a new one. If you begin typing characters immediately, 
  87. before you move the cursor, the previous text string will be erased first.
  88.  
  89. To continue a search, hit 'N', or click on 'N' or 'NEXT' in the help line. This
  90. will continue the search from where the last text was found (even if you've 
  91. scrolled it off the screen). If you hit 'N' before you've selected text with 
  92. 'F', then a box will be displayed for you to enter the text.
  93.  
  94. Similarly, hit 'P' or click on 'P' or 'PREV' in the help line to search 
  95. backwards from the last found text. The program will beep if you have hit 'P' 
  96. before entering text with 'F'.
  97.  
  98. In all 3 cases, if the text string is not found, it will beep and display
  99. "Search string not found". (It doesn't loop back around from the end of the
  100. file to the beginning, or vice-versa).
  101.  
  102.  
  103. To leave the program, hit the ESCape key, or click on "ESC QUIT" in the help 
  104. line. You will NOT be asked for confirmation.
  105.  
  106.  
  107.  
  108. -------------------------
  109. Revision History
  110. -------------------------
  111.  
  112. Date           Version       Changes
  113.  
  114. February 1993  2.0           Added Search feature.
  115.                              Speeded up display when first scanning the file
  116.                              by only displaying the percentage in 5% increments.
  117.                              Changed method of programming by using a third
  118.                              party 'C' Window Library (freely distributable).
  119.  
  120. June 1993      2.1           Fixed problems with not displaying last line of a 
  121.                              file.
  122.  
  123. September 1993 2.11          Doubled maximum # of lines from 10,000 to 20,000.
  124.  
  125. September 1993 2.2           Added scroll bars and mouse support.
  126.  
  127. -------------------------
  128.  
  129.  
  130.  
  131. ---------------------
  132. Contacting the author
  133. ---------------------
  134.  
  135. I can reached via:
  136.  
  137. CompuServe:   70620,1445
  138. Internet:     Chris_Gordon@MAGIC-BBS.corp.apple.com
  139.          or   70620.1445@CompuServe.com
  140.  
  141.  
  142. Chris Gordon
  143.  
  144.  
  145. ----------------
  146. Acknowledgements
  147. ----------------
  148.  
  149. P. A. McKenzie for the 'C' Window Library (Copyright 1990, 1991)
  150.  
  151.